home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BBS in a Box 7
/
BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso
/
Files
/
Hyper
/
T
/
Telephone Log.cpt
/
Dial Script(read docs)
next >
Wrap
Text File
|
1987-11-23
|
750b
|
28 lines
on mouseUp
if first char of selection is in "(123456789" then
get selection
else if first char of msg is in "(123456789" then
get msg
else get first line of field "Phone Number"
if it is not empty then
put it into PhoneNumber
put first line of field "Name and Address" into phoneName
phone phoneNumber,phoneName
end if
end mouseUp
on phone phoneNumber,phoneName
visual effect zoom open
go to "Phone"
dial phoneNumber
set lockScreen to true
go to last card of "Telephone Log"
doMenu "New Card"
put phoneName into field "Person"
put phoneNumber into field "Number"
put the time into field "Start" -- start timer
global StartTime
put the long time into StartTime
set lockScreen to false
end phone